home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / prefs / screenmode.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  64 lines

  1. #ifndef PREFS_SCREENMODE_H
  2. #define PREFS_SCREENMODE_H 1
  3. /*
  4. ** screenmode.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for screenmode.h
  17. */
  18. #ifndef ScreenModePrefsPtr
  19. #define ScreenModePrefsPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for screenmode.h
  23. */
  24.  
  25.  
  26. /*****************************************************************************/
  27.  
  28.  
  29. #ifndef EXEC_TYPES_H
  30. #include <exec/types.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_IFFPARSE_H
  34. #include <libraries/iffparse.h>
  35. #endif
  36.  
  37.  
  38. /*****************************************************************************/
  39.  
  40.  
  41. #define ID_SCRM 1396920909 
  42.  
  43.  
  44. STRUCT ScreenModePrefs
  45.  
  46.     STRING smp_Reserved SIZE 16  /* 4*SIZEOF(LONGINT) */
  47.     LONGINT smp_DisplayID 
  48.     SHORTINT smp_Width 
  49.     SHORTINT smp_Height 
  50.     SHORTINT smp_Depth 
  51.     SHORTINT smp_Control 
  52. END STRUCT 
  53.  
  54. /* flags for ScreenModePrefs.smp_Control */
  55. #define SMB_AUTOSCROLL 1
  56.  
  57. #define SMF_AUTOSCROLL (1)
  58.  
  59.  
  60. /*****************************************************************************/
  61.  
  62.  
  63. #endif /* PREFS_SCREENMODE_H */
  64.